home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 May / Designer's Club 1998 May.iso / pc / IDEASRC / MAIN.DIR / 00039.ls < prev    next >
Encoding:
Text File  |  1998-04-06  |  733 b   |  34 lines

  1. on exitFrame
  2.   go(the frame)
  3.   repeat with n = 27 to 32
  4.     if rollOver(n) then
  5.       set the visible of sprite n to 0
  6.     end if
  7.     updateStage()
  8.   end repeat
  9.   repeat with n = 27 to 32
  10.     if not rollOver(n) then
  11.       set the visible of sprite n to 1
  12.     end if
  13.     updateStage()
  14.   end repeat
  15.   repeat with n = 10 to 13
  16.     if rollOver(n) then
  17.       set the visible of sprite n to 0
  18.     end if
  19.     if rollOver(n) then
  20.       set the visible of sprite (n + 5) to 1
  21.     end if
  22.     updateStage()
  23.   end repeat
  24.   repeat with n = 10 to 13
  25.     if not rollOver(n) then
  26.       set the visible of sprite n to 1
  27.     end if
  28.     if not rollOver(n) then
  29.       set the visible of sprite (n + 5) to 0
  30.     end if
  31.     updateStage()
  32.   end repeat
  33. end
  34.